/********** Template CSS **********/
:root {
    --primary: #0d2e6f;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #fb7503;
}
.btn-primary{
    color: var(--primary);
    background-color: var(--primary);
}

.bg-primary{
   background-color: var(--primary) !important;
   
}

.text-primary {
     color: var(--primary) !important; 
}

.btn-primary {
    
    background-color: var(--primary) !important; 
    border-color: var(--primary) !important; ;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1{
     font-size: 32px !important;
      word-spacing: 1.3px !important;
}

h6{
     font-size: 18px !important;
      
}

 p {
    font-size: 15px;
    text-align: justify;
    line-height: 1.8;
    word-spacing: 1.7px;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 30px;
    height: 30px; 
    font-size: 13px;
    
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar ul li a,
.navbar .navbar-nav .nav-link {
    margin-right: 50px;
     padding: 20px 0px; 
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar ul li{
  padding: 20px 0;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden; 
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
         min-width: 18rem;
    }

     .navbar .nav-item .dropdown-menu li  {
      padding:  10px 10px;
    }

    .navbar .nav-item .dropdown-menu li a{
      color: #000;
    }
    .navbar .nav-item .dropdown-menu li a{
      color: #000;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.top-bar p {
    font-weight: bold;
    color: #0d2e6f;
    font-size: 18px;
}
.top-bar h6 a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.3px;
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-carousel .nivo-caption p {
      font-size: 12px;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

 .hero-carousel .nivo-caption p {
    color: #fff;
    padding: 10px 0px;
}

/*.hero-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}*/

.hero-carousel .owl-nav .owl-prev,
.hero-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0d2e6f;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f3f3f3;
    color: #0d2e6f;
}

 
.hero-carousel .owl-nav .owl-next {  
    right: 0%;   
}



.hero-carousel .owl-nav .owl-prev:hover,
.hero-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

 


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}




/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
/*.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}*/

/*.project-item:hover a {
    opacity: 1;
}*/

.btn-website {
    padding: 9px 22px !important;
    font-size: 15px;
}
.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .testimonial-item p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5px;
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

/*.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}*/

/*.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}*/

.courses-carousel .owl-nav,
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.courses-carousel .owl-nav .owl-prev,
.courses-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.courses-carousel .owl-nav .owl-prev:hover,
.courses-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer-section {
  background: #041d4c;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #f8f8f8;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-icon {
    width: 30%;
}

.cta-text {
    width: calc(100% - 30%);
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color:#dfdfdf;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
  background-color: #fff;
  padding: 5px 0px;
}
/*.footer-logo img {
    max-width: 400px;
}*/
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
   color: #dfdfdf;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.courses-widget ul li {
 
  width: 100% !important;
 
}
ol, ul {
    padding-left: 1rem;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #dfdfdf;

}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #0d2f6e;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}


.infobox-card {
  width: 100%;
  float: left;
  min-height: 300px;
  background: #fff;
  position: relative;
  padding: 0px 0px 10px 0px;
}
.single-news.clearfix{
  padding:  10px 20px;

}

/*.infobox-card .randomHead {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}*/

.infobox-card .randomHead h4 {
  position: relative;
  padding: 17px 5px;
  background: var(--primary);
  color: #fff;
  border-radius: 0px;
  letter-spacing: 1px;
  font-weight: 400;
  display: table;
  margin: 0px auto 0;
  text-align: center; 
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
}

/*.infobox-card .randomHead h4::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 100%;
  height: 16px;
  background: var(--primary);
  transform: skewX(30deg);
  z-index: -1;
}*/

.pofile-img img {
  width: 130px;
  object-fit: cover;
  /* height: 100px; */
  border-radius: 2px;
}

.infobox-card .profile-name {
  font-size: 16px;
  font-weight: 600;
}
.text-brand {
  color: #081245 !important;
}  



:root {    
      /*  Branding  */
    --color-primary: #004090;
    --color-secondary: #bd1e51;
    
      /* Grayscale */
    --gray-00: white;    
    --bg-20: #eb8800;
 
}

/*===================================================================================== 
Pricing Section CSS
=======================================================================================*/ 
.pricing-section {   
    padding: 80px 0 30px 0px;    
}

.pricing-block { 
    padding: 0 10px;
    margin-bottom: 40px;
}
.pricing-block .inner-box {  
    background-color: var(--gray-00);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 0 0 30px; 
    margin: 0 auto;
    border-bottom: 20px solid var(--color-secondary);
}
.pricing-block .icon-box {
    position: relative;
    padding: 50px 30px 0;
    background-color: var(--color-secondary);
    text-align: center;
}
.pricing-block .icon-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75px;
    width: 100%;
    border-radius: 50% 50% 0 0;
    background-color: var(--gray-00);
    content: "";
}
.pricing-block .icon-box .icon-outer {
    position: relative;
    height: 150px;
    width: 150px;
    background-color: var(--gray-00);
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
}

.pricing-block .price-box {
    position: relative;
    text-align: center;
    padding: 10px 20px;
}
.pricing-block .title { 
    font-size: 18px;  
}

.pricing-block:nth-child(2) .icon-box .icon,
.pricing-block:nth-child(2) .inner-box {
    border-color: var(--bg-20);
}
.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box {
    background-color: var(--bg-20);
}

.pricing-block:nth-child(3) .icon-box .icon,
.pricing-block:nth-child(3) .inner-box {
    border-color: #004090;
}
.pricing-block:nth-child(3) .btn-box a,
.pricing-block:nth-child(3) .icon-box {
    background-color: #004090;
}


.pricing-block:nth-child(4) .btn-box a,
.pricing-block:nth-child(4) .icon-box {
    background-color: #449d44;
}
.pricing-block:nth-child(4) .icon-box .icon, .pricing-block:nth-child(4) .inner-box {
    border-color: #449d44;
}

/*================ 
 Media CSS  
============*/
@media (max-width: 1024px) { 
    .pricing-block .title {
        font-size: 18px;
    }
    .pricing-block { 
        padding: 0 15px;
        margin-bottom: 22px;        
    }
  }

  @media (max-width: 768px) { 
    .footer-logo img {
        width: 100% !important;
    }
  }



 





    .animated-twin-lines {
        width: 100%;
        height: auto;
        margin: auto auto 45px;
        float: none;
        display: inline-block;
        position: relative;
        text-align: center;
        padding-bottom: 15px
    }
    
    .animated-twin-lines:after, .animated-twin-lines:before {
        left: 0;
        right: 0;
        margin: 0 auto;
        content: '';
        display: block;
        position: absolute;
        width: 100px;
        height: 3px;
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -o-transition: all .3s linear;
        -ms-transition: all .3s linear;
        transition: all .3s linear;
        -ms-animation-delay: 1s;
        background: #000;
    }
    
    .animated-twin-lines:before {
        animation: clip-one 1s linear infinite;
        -moz-animation: clip-one 1s linear infinite;
        -ms-animation: clip-one 1s linear infinite;
        -webkit-animation: clip-one 1s linear infinite;
        bottom: -2px
    }
    
    .animated-twin-lines:after {
        animation: clip-two 1.5s linear infinite;
        -moz-animation: clip-two 1.5s linear infinite;
        -ms-animation: clip-two 1.5s linear infinite;
        -webkit-animation: clip-two 1.5s linear infinite;
        bottom: 2px
    }
    .animated-twin-lines:after {
        background-color: red;
    }
    .animated-twin-lines:before{
        background-color: #2e3d64;
    }
    .animated-twin-lines.alignleft {
        text-align: left
    }
    
    .animated-twin-lines.alignright {
        text-align: right
    }
    
    .animated-twin-lines.alignleft, .animated-twin-lines.alignright {
        margin-bottom: 25px
    }
    
    .animated-twin-lines.alignleft:after, .animated-twin-lines.alignleft:before {
        right: auto
    }
    
    .animated-twin-lines.alignright:after, .animated-twin-lines.alignright:before {
        left: auto
    }
    
    .dt-sc-dark-bg .animated-twin-lines:after, .dt-sc-dark-bg .animated-twin-lines:before {
        background: #fff
    }

.animated-twin-lines.alignleft, .animated-twin-lines.alignright {
    margin-bottom: 25px;
}

.animated-twin-lines.alignleft {
    text-align: left;
}
    
    @keyframes clip-one {
        0%, 100% {
            width: 80px
        }
        25% {
            width: 30px
        }
        50% {
            width: 50px
        }
        75% {
            width: 35px
        }
    }
    
    @-webkit-keyframes clip-one {
        0%, 100% {
            width: 80px
        }
        25% {
            width: 30px
        }
        50% {
            width: 50px
        }
        75% {
            width: 35px
        }
    }
    
    @keyframes clip-two {
        0%, 100% {
            width: 50px
        }
        25% {
            width: 35px
        }
        50% {
            width: 15px
        }
        75% {
            width: 40px
        }
    }
    
    
    }
